home *** CD-ROM | disk | FTP | other *** search
/ Merciful 2 / Merciful - Disc 2.iso / software / f / flinkcd32hdonly1.dms / flinkcd32hdonly1.adf / Flink_Install < prev    next >
Text File  |  1992-09-02  |  758b  |  35 lines

  1. ;
  2. ;        Flink Installer
  3. ;              By
  4. ;        Cyanide / Lsd
  5. ;
  6.  
  7. c:requestfile >ENV:Path TITLE "Please select install Path..." NOICONS DRAWERSONLY SYS:
  8.  
  9. IF WARN
  10.    Skip ABORT
  11. ENDIF
  12.  
  13. CD $Path
  14.  
  15. c:requestchoice >ENV:Choice TITLE "Flink Installer" BODY "Create A Drawer For Flink?" GADGETS "Yes|No"
  16.  
  17. IF $Choice EQ 1
  18.   Makedir "Flink"
  19.   CD "Flink"
  20. Endif
  21.  
  22. Echo "Creating Directories and Copying Files, this may"
  23. Echo "take a while so please be patient! Appx:2mins 30secs"
  24.  
  25. C:Copy DISK1: ALL TO /Flink quiet
  26. C:Copy DISK2: ALL TO /Flink quiet
  27.  
  28. C:requestchoice >ENV:Choice TITLE "Flink Installer" BODY "Installation Complete" GADGETS "OK"
  29. Skip End
  30.  
  31. Lab Abort
  32. C:requestchoice >ENV:Choice TITLE "Flink Installer" BODY "Installation Aborted" GADGETS "OK"
  33.  
  34. Lab End
  35.